home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / pascal / ptrp10.zip / TEST10.TRP < prev    next >
Text File  |  1994-05-17  |  296b  |  14 lines

  1. procedure main
  2. var
  3.         f : text = "test10.trp"
  4.         s : string
  5. endvar
  6.         if (reset(f) = 0) 
  7.                 while (not eof(f))
  8.                         readln(f, s)
  9.                         writeln(s)
  10.                 endwhile
  11.                 close(f)
  12.         endif
  13. endproc
  14.